home *** CD-ROM | disk | FTP | other *** search
/ BCI NET 2 / BCI NET 2.iso / archives / programming / languages / fpl-v115.lha / FPL / funclib / funclib.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-04-09  |  570 b   |  28 lines

  1. /*
  2.  * Here are all funclib structures, defines, macros and return codes.
  3.  */
  4.  
  5. typedef enum {
  6.   FUNCLIB_OK,
  7.   /* The funclib execution (start/close) went OK */
  8.  
  9.   FUNCLIB_PARAMETER,
  10.   /* parameter error when the funclib was called */
  11.  
  12.   FUNCLIB_INTERNAL,
  13.   /* some kind of internal, undefined error! */
  14.  
  15.   FUNCLIB_RESOURCE,
  16.   /* failed getting a system resource */
  17.  
  18.   FUNCLIB_MEMORY,
  19.   /* failed getting enough memory from the system */
  20.  
  21.   FUNCLIB_LOAD,
  22.   /* failed loading the funclib */
  23.  
  24.   FUNCLIB_VERSION
  25.   /* the requested funclib version wasn't found */
  26. } FuncRet;
  27.  
  28.